changed response to utilized `interpolated` to allow for liquid templating

Adam Mokan 9 years ago
parent
commit
684ae1d73f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/models/agents/webhook_agent.rb

+ 1 - 1
app/models/agents/webhook_agent.rb

@@ -73,7 +73,7 @@ module Agents
73 73
     end
74 74
 
75 75
     def response_message
76
-      options['response'] || 'Event Created'
76
+      interpolated['response'] || 'Event Created'
77 77
     end
78 78
   end
79 79
 end